Linux am Dienstag – Programm für den 25.11.2025

Diesmal bei Linux am Dienstag …Post Mortem Analyse eines Servers, vorausgesetzt, ich bekomme den heute noch ins Büro.

Linux am Dienstag – Programm für den 25.11.2025

u.a. im Programm am 25.11.2025, ab 19 Uhr:

  • Open Source – Schneller. Besser. HDR. Blender 5.0 ist da
  • Sicherheit – Cloudflare legt halbes Internet lahm
  • Sicherheit – Android Staatstrojaner jetzt als Privatedition
  • NIS2 – Für Cybervorfälle soll EU-weit nur noch eine Behörde zuständig sein
  • Sicherheit – ASUS WRT unter Attacke
  • Datenschutz – DSGVO soll für Unternehmen entschärft werden.

und andere IT-Newsbeiträge aus aller Welt. Wie jede Woche per Videokonferenz auf

Hinweis: Die bisherigen Vorträge findet man unter https://linux-am-dienstag.de/archiv/ .

Linux am Dienstag – Programm für den 18.11.2025

Diesmal bei Linux am Dienstag … eigentlich müßten wir mit dem Rescue Image weitermachen, aber rein praktische Probleme haben heute Vorrang.

Linux am Dienstag – Programm für den 18.11.2025

u.a. im Programm am 18.11.2025, ab 19 Uhr:

  • Linux – Exim Fehler finden und beheben (Marius)
  • Linux – Massenrenaming in Bash (Marius)
  • Open Source – Hans de Goede wechselt zu Qualcomm
  • Sicherheit – Kundenshop von Miniatur-Wunderland gehackt
  • Sicherheit – BKA nimmt 100 C&C Server vom Netz
  • Datenschutz – Neue Vorratsdatenspeicherinitiative gestartet

und andere IT-Newsbeiträge aus aller Welt. Wie jede Woche per Videokonferenz auf

Hinweis: Die bisherigen Vorträge findet man unter https://linux-am-dienstag.de/archiv/ .

Fedora: Exim 4.99-1 packages have defective mysql backend

As of this time now, the Fedora Maintainer did not react to the bugreport or started a new build, so you get the quick & dirty fix from me now:

Fedora: Exim 4.99-1 packages have defective mysql backend

All Exim 4.99-1 builds for all architectures have the same mysql backend bug: it does not work anymore.

This is caused by a configure mistake the maintainer has done before compiling the source code. As a result, the refered to mysql-lookuplibraryname is wrong:

traditionally, Fedora Exim used this name schema: „/usr/lib64/exim/<version>/lookups/mysql.so“, but the Exim 4.99-1 build referes to :

openat(AT_FDCWD, "/usr/lib64/exim/4.99-1.fc42/lookups/mysql_lookup.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)

failing to find, what is not existing there.

The Workaround

The quick workaround is to symlink the used name to the real lib name:

cd /usr/lib64/exim/4.99-1.fc42/lookups
ln -s mysql.so mysql_lookup.so

You do not even need to restart Exim, because this is not a runtime issue.